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:
Cy Schubert 2024-06-02 14:36:19 -07:00
parent bfe721a69c
commit bcdfa5b4d8
2 changed files with 2 additions and 0 deletions

View file

@ -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

View file

@ -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