mirror of
https://git.freebsd.org/ports.git
synced 2025-07-17 01:09:24 -04:00
x11/cde*: Catch up to src bb421be6c117
src bb421be6c117 moved ftime(3) to libutil. This resulted in this error: ld: error: undefined symbol: ftime >>> referenced by getdate.c >>> libDtCmP_a-getdate.o:(cm_getdate) in archive ../libDtCmP/libDtCmP.a There are other programs and libraries that also reference ftime(3). Rather than patch each Makefile.am, add -lutil to LDFLAGS. MFH: 2024Q2
This commit is contained in:
parent
bfe721a69c
commit
bcdfa5b4d8
2 changed files with 2 additions and 0 deletions
|
@ -63,6 +63,7 @@ SUB_FILES= pkg-message
|
|||
CFLAGS+= -Wno-register -Wno-incompatible-function-pointer-types \
|
||||
-Wno-implicit-function-declaration
|
||||
LDFLAGS+= -z muldefs #--allow-multiple-definition
|
||||
LDFLAGS+= -lutil
|
||||
|
||||
pre-configure:
|
||||
@cd ${WRKSRC} && ./autogen.sh
|
||||
|
|
|
@ -70,6 +70,7 @@ SUB_FILES= pkg-message
|
|||
CFLAGS+= -Wno-register -Wno-incompatible-function-pointer-types \
|
||||
-Wno-implicit-function-declaration
|
||||
LDFLAGS+= -z muldefs #--allow-multiple-definition
|
||||
LDFLAGS+= -lutil
|
||||
|
||||
pre-configure:
|
||||
@cd ${WRKSRC} && ./autogen.sh
|
||||
|
|
Loading…
Add table
Reference in a new issue