]> granicus.if.org Git - graphviz/commitdiff
mostly reverting previous change - found an easier way
authorellson <devnull@localhost>
Wed, 20 Aug 2008 01:53:51 +0000 (01:53 +0000)
committerellson <devnull@localhost>
Wed, 20 Aug 2008 01:53:51 +0000 (01:53 +0000)
tclpkg/tkstubs/Makefile.am [new file with mode: 0644]
tclpkg/tkstubs/README [new file with mode: 0644]

diff --git a/tclpkg/tkstubs/Makefile.am b/tclpkg/tkstubs/Makefile.am
new file mode 100644 (file)
index 0000000..4c59d75
--- /dev/null
@@ -0,0 +1,16 @@
+# $Id$ $Revision$
+# Process this file with automake to produce Makefile.in
+
+AM_CPPFLAGS = @TCL_CFLAGS@ @TK_CFLAGS@ @TCL_INCLUDES@  @TK_INCLUDES@ @TK_XINCLUDES@
+                                                                                
+LIBS = @TK_STUB_LIB_SPEC@
+
+if WITH_TK
+noinst_LTLIBRARIES = libtkstubs_C.la
+noinst_HEADERS = tkInt.h
+endif
+
+# tkStubLib.c is a dummy file just to fool automake
+libtkstubs_C_la_SOURCES = tkStubLib.c tkStubImg.c
+
+EXTRA_DIST =
diff --git a/tclpkg/tkstubs/README b/tclpkg/tkstubs/README
new file mode 100644 (file)
index 0000000..afbc7e7
--- /dev/null
@@ -0,0 +1,6 @@
+The purpose of this directory is just to fool libtool
+which doesn't understand that libtkstubs${ver}.a contains
+code suitable for incuding in a shared library.
+
+Not sure whose bug this really is: tcl's for not using libtool
+or libtool's for not supporting use of .a convenience libraries.