mirror of
https://git.freebsd.org/ports.git
synced 2025-05-13 07:41:50 -04:00
While here add the ISO/IEC and ITU licenses and fix a compiler warning regarding a mis-compiled comparison (!a == b) --> (!(a == b)) to not compare !a with b (while !(a == b) was clearly intended).
11 lines
261 B
C
11 lines
261 B
C
--- lencod/inc/configfile.h.orig 2015-06-19 11:50:52 UTC
|
|
+++ lencod/inc/configfile.h
|
|
@@ -20,7 +20,7 @@
|
|
#define PROFILE_IDC 88
|
|
#define LEVEL_IDC 21
|
|
|
|
-InputParameters cfgparams;
|
|
+extern InputParameters cfgparams;
|
|
|
|
|
|
#ifdef INCLUDED_BY_CONFIGFILE_C
|