-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
giblib: Fix mysterious libtool errors and set LICENSE.
- Loading branch information
Showing
3 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
$NetBSD: distinfo,v 1.5 2015/11/03 03:27:28 agc Exp $ | ||
$NetBSD: distinfo,v 1.6 2020/11/24 17:10:43 nia Exp $ | ||
|
||
SHA1 (giblib-1.2.4.tar.gz) = 342e6f7882c67d2277e1765299e1be5078329ab0 | ||
RMD160 (giblib-1.2.4.tar.gz) = fb0cd140ff79c6e8ac34d0aa0fcc930ea7610736 | ||
SHA512 (giblib-1.2.4.tar.gz) = 4866df223e6d219a5c9a327874bcd67260c83fba8f99862222df41ef86fb31efa0172a777bf46c853ca380dc2a64bbd41bf4fd658fcb84a924cab4e0f525dcfd | ||
Size (giblib-1.2.4.tar.gz) = 287653 bytes | ||
SHA1 (patch-aa) = 19e3d89366a6455df891fb843f6682d623023b0d | ||
SHA1 (patch-giblib_Makefile.in) = c2e844ea064a755ff62ca65529cd8ca581c13fc9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
$NetBSD: patch-giblib_Makefile.in,v 1.1 2020/11/24 17:10:44 nia Exp $ | ||
|
||
libtool: compile: unable to infer tagged configuration | ||
libtool: error: specify a tag with '--tag' | ||
|
||
--- giblib/Makefile.in.orig 2004-09-04 15:03:35.000000000 +0000 | ||
+++ giblib/Makefile.in | ||
@@ -124,9 +124,9 @@ libgiblib_la_OBJECTS = gib_list.lo gib_ | ||
gib_style.lo gib_imlib.lo gib_stack.lo gib_utils.lo gib_queue.lo | ||
CFLAGS = @CFLAGS@ | ||
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||
-LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||
+LTCOMPILE = $(LIBTOOL) --mode=compile --tag=CC $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) | ||
CCLD = $(CC) | ||
-LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ | ||
+LINK = $(LIBTOOL) --mode=link --tag=CC $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ | ||
DATA = $(installed_headers_DATA) | ||
|
||
DIST_COMMON = ./stamp-h.in Makefile.am Makefile.in giblib_config.h.in | ||
@@ -229,13 +229,13 @@ distclean-compile: | ||
maintainer-clean-compile: | ||
|
||
.c.lo: | ||
- $(LIBTOOL) --mode=compile $(COMPILE) -c $< | ||
+ $(LIBTOOL) --mode=compile --tag=CC $(COMPILE) -c $< | ||
|
||
.s.lo: | ||
- $(LIBTOOL) --mode=compile $(COMPILE) -c $< | ||
+ $(LIBTOOL) --mode=compile --tag=CC $(COMPILE) -c $< | ||
|
||
.S.lo: | ||
- $(LIBTOOL) --mode=compile $(COMPILE) -c $< | ||
+ $(LIBTOOL) --mode=compile --tag=CC $(COMPILE) -c $< | ||
|
||
mostlyclean-libtool: | ||
-rm -f *.lo |