elfio-1.0.3-shared.patch 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. diff -ur ELFIO-1.0.3.orig/configure.in ELFIO-1.0.3/configure.in
  2. --- ELFIO-1.0.3.orig/configure.in 2007-03-06 16:36:26.000000000 +0100
  3. +++ ELFIO-1.0.3/configure.in 2007-03-06 16:37:08.000000000 +0100
  4. @@ -7,6 +7,7 @@
  5. AC_PROG_CXX
  6. AC_PROG_RANLIB
  7. AC_PROG_INSTALL
  8. +AC_PROG_LIBTOOL
  9. dnl Checks for libraries.
  10. diff -ur ELFIO-1.0.3.orig/ELFIO/Makefile.am ELFIO-1.0.3/ELFIO/Makefile.am
  11. --- ELFIO-1.0.3.orig/ELFIO/Makefile.am 2007-03-06 16:36:26.000000000 +0100
  12. +++ ELFIO-1.0.3/ELFIO/Makefile.am 2007-03-06 16:36:45.000000000 +0100
  13. @@ -1,6 +1,6 @@
  14. -lib_LIBRARIES = libELFIO.a
  15. +lib_LTLIBRARIES = libELFIO.la
  16. -libELFIO_a_SOURCES = ELFIDynamic.cpp ELFIImpl.cpp ELFINote.cpp ELFIO.cpp \
  17. +libELFIO_la_SOURCES = ELFIDynamic.cpp ELFIImpl.cpp ELFINote.cpp ELFIO.cpp \
  18. ELFIOUtils.cpp ELFIRelocation.cpp ELFISection.cpp \
  19. ELFISegment.cpp ELFIStrings.cpp ELFISymbols.cpp \
  20. ELFODynamic.cpp ELFOImpl.cpp ELFONote.cpp \
  21. @@ -10,4 +10,4 @@
  22. include_HEADERS = ELFI.h ELFIO.h ELFO.h ELFTypes.h
  23. noinst_HEADERS = ELFIImpl.h ELFOImpl.h ELFIOUtils.h
  24. -EXTRA_DIST = ELFIO.dsp ELFIO.dsw ELFIO.mcp
  25. \ No newline at end of file
  26. +EXTRA_DIST = ELFIO.dsp ELFIO.dsw ELFIO.mcp
  27. diff -ur ELFIO-1.0.3.orig/Examples/ELFDump/Makefile.am ELFIO-1.0.3/Examples/ELFDump/Makefile.am
  28. --- ELFIO-1.0.3.orig/Examples/ELFDump/Makefile.am 2007-03-06 16:36:26.000000000 +0100
  29. +++ ELFIO-1.0.3/Examples/ELFDump/Makefile.am 2007-03-06 16:37:51.000000000 +0100
  30. @@ -3,6 +3,6 @@
  31. bin_PROGRAMS = ELFDump
  32. ELFDump_SOURCES = ELFDump.cpp
  33. -ELFDump_LDADD = ../../ELFIO/libELFIO.a
  34. +ELFDump_LDADD = ../../ELFIO/libELFIO.la
  35. EXTRA_DIST = ELFDump.dsp ELFDump.dsw ELFDump.mcp
  36. diff -ur ELFIO-1.0.3.orig/Examples/RelocationTable/Makefile.am ELFIO-1.0.3/Examples/RelocationTable/Makefile.am
  37. --- ELFIO-1.0.3.orig/Examples/RelocationTable/Makefile.am 2007-03-06 16:36:26.000000000 +0100
  38. +++ ELFIO-1.0.3/Examples/RelocationTable/Makefile.am 2007-03-06 16:38:53.000000000 +0100
  39. @@ -3,6 +3,6 @@
  40. noinst_PROGRAMS = RelocationTable
  41. RelocationTable_SOURCES = RelocationTable.cpp
  42. -RelocationTable_LDADD = ../../ELFIO/libELFIO.a
  43. +RelocationTable_LDADD = ../../ELFIO/libELFIO.la
  44. EXTRA_DIST = RelocationTable.mcp
  45. diff -ur ELFIO-1.0.3.orig/Examples/WriteObj/Makefile.am ELFIO-1.0.3/Examples/WriteObj/Makefile.am
  46. --- ELFIO-1.0.3.orig/Examples/WriteObj/Makefile.am 2007-03-06 16:36:26.000000000 +0100
  47. +++ ELFIO-1.0.3/Examples/WriteObj/Makefile.am 2007-03-06 16:39:28.000000000 +0100
  48. @@ -3,6 +3,6 @@
  49. noinst_PROGRAMS = WriteObj
  50. WriteObj_SOURCES = WriteObj.cpp
  51. -WriteObj_LDADD = ../../ELFIO/libELFIO.a
  52. +WriteObj_LDADD = ../../ELFIO/libELFIO.la
  53. EXTRA_DIST = WriteObj.dsp WriteObj.dsw WriteObj.mcp
  54. diff -ur ELFIO-1.0.3.orig/Examples/WriteObj2/Makefile.am ELFIO-1.0.3/Examples/WriteObj2/Makefile.am
  55. --- ELFIO-1.0.3.orig/Examples/WriteObj2/Makefile.am 2007-03-06 16:36:26.000000000 +0100
  56. +++ ELFIO-1.0.3/Examples/WriteObj2/Makefile.am 2007-03-06 16:39:40.000000000 +0100
  57. @@ -3,4 +3,4 @@
  58. noinst_PROGRAMS = WriteObj2
  59. WriteObj2_SOURCES = WriteObj2.cpp
  60. -WriteObj2_LDADD = ../../ELFIO/libELFIO.a
  61. +WriteObj2_LDADD = ../../ELFIO/libELFIO.la
  62. diff -ur ELFIO-1.0.3.orig/Examples/Writer/Makefile.am ELFIO-1.0.3/Examples/Writer/Makefile.am
  63. --- ELFIO-1.0.3.orig/Examples/Writer/Makefile.am 2007-03-06 16:36:26.000000000 +0100
  64. +++ ELFIO-1.0.3/Examples/Writer/Makefile.am 2007-03-06 16:39:10.000000000 +0100
  65. @@ -3,6 +3,6 @@
  66. noinst_PROGRAMS = Writer
  67. Writer_SOURCES = Write.cpp
  68. -Writer_LDADD = ../../ELFIO/libELFIO.a
  69. +Writer_LDADD = ../../ELFIO/libELFIO.la
  70. EXTRA_DIST = Writer.dsp Writer.dsw Writer.mcp