mirror of
https://git.freebsd.org/ports.git
synced 2025-07-13 15:29:15 -04:00
- Strip shared library and binary executable using existing STRIP in source - Cosmetic change - Remove superfluous blank lines in patch files
15 lines
345 B
Text
15 lines
345 B
Text
--- mDNSShared/dnsextd_lexer.l.orig 2016-03-11 09:47:07 UTC
|
|
+++ mDNSShared/dnsextd_lexer.l
|
|
@@ -23,6 +23,12 @@
|
|
|
|
extern YYSTYPE yylval;
|
|
|
|
+#if !defined YYSTYPE_yylineno
|
|
+#if YY_FLEX_MAJOR_VERSION <= 2 && YY_FLEX_MINOR_VERSION <= 5 && YY_FLEX_SUBMINOR_VERSION <= 4
|
|
+int yylineno = 1;
|
|
+#endif
|
|
+#endif
|
|
+
|
|
#define YY_NO_INPUT 1
|
|
int yylex(void);
|
|
|