You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling CUPS 1.3.x as an upgrade (installed CUPS 1.2.x), compile fails in cgi-bin/ with undefined symbols (first one is CUPS_SERVER_REMOTE_ANY in cgi-bin/admin.c).
This is caused by an error in the ordering of compiler arguments, the old headers in /usr/local/include get precedence over the current ones in cups' source directory. When assembling ALL_CFLAGS in Makedefs, $(CFLAGS)
has to go before $(SSLFLAGS). See attached file for a patch.
NOTE: this has been first discoverd on FreeBSD, see http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/116721 for reference.
The text was updated successfully, but these errors were encountered:
Version: 1.3.2
CUPS.org User: cmt
When compiling CUPS 1.3.x as an upgrade (installed CUPS 1.2.x), compile fails in cgi-bin/ with undefined symbols (first one is CUPS_SERVER_REMOTE_ANY in cgi-bin/admin.c).
This is caused by an error in the ordering of compiler arguments, the old headers in /usr/local/include get precedence over the current ones in cups' source directory. When assembling ALL_CFLAGS in Makedefs, $(CFLAGS)
has to go before $(SSLFLAGS). See attached file for a patch.
NOTE: this has been first discoverd on FreeBSD, see http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/116721 for reference.
The text was updated successfully, but these errors were encountered: