Ticket #1001: mythtv-0.19_pre8554-libdir.patch
File mythtv-0.19_pre8554-libdir.patch, 6.6 KB (added by , 20 years ago) |
---|
-
configure
96 96 echo " --compile-type=CTYPE one of release, profile, debug [$compile_type]" 97 97 echo " NOTE: profile is for sampling profilers" 98 98 echo " --prefix=PREFIX install in PREFIX [$prefix]" 99 #echo " --libdir=DIR install libs in DIR [PREFIX/lib]"99 echo " --libdir=DIR install libs in DIR [PREFIX/lib]" 100 100 #echo " --mandir=DIR man documentation in DIR [PREFIX/man]" 101 101 echo " --disable-ccache disable compiler cache (ccache)" 102 102 echo " --disable-distcc disable distributed compilation (distcc)" … … 2232 2232 echo "#define FFMPEG_CONFIGURATION "'"'"$FFMPEG_CONFIGURATION"'"' >> $TMPH 2233 2233 2234 2234 echo "PREFIX=$prefix" >> $MYTH_CONFIG_MAK 2235 #echo "libdir=$libdir" >> $MYTH_CONFIG_MAK2235 echo "LIBDIR=$libdir" >> $MYTH_CONFIG_MAK 2236 2236 #echo "bindir=$bindir" >> $MYTH_CONFIG_MAK 2237 2237 #echo "mandir=$mandir" >> $MYTH_CONFIG_MAK 2238 2238 #echo "MAKE=$make" >> $MYTH_CONFIG_MAK -
libs/libmythtv/libmythtv.pro
4 4 TEMPLATE = lib 5 5 TARGET = mythtv-$$LIBVERSION 6 6 CONFIG += thread dll 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 INCLUDEPATH += ../.. .. -
libs/libmythmpeg2/libmythmpeg2.pro
4 4 TEMPLATE = lib 5 5 TARGET = mythmpeg2-$$LIBVERSION 6 6 CONFIG += thread staticlib warn_off 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 QMAKE_CFLAGS_RELEASE += -DPIC -fPIC -fno-common -
libs/libmythsoundtouch/libmythsoundtouch.pro
4 4 TEMPLATE = lib 5 5 TARGET = mythsoundtouch-$$LIBVERSION 6 6 CONFIG += thread staticlib warn_off 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 INCLUDEPATH += ../../libs/libavcodec ../.. -
libs/libavformat/libavformat.pro
4 4 TEMPLATE = lib 5 5 TARGET = mythavformat-$$LIBVERSION 6 6 CONFIG += thread dll warn_off 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 INCLUDEPATH += ../ ../../ ../libavcodec ../libavutil ../libmythtv -
libs/libmythsamplerate/libmythsamplerate.pro
4 4 TEMPLATE = lib 5 5 TARGET = mythsamplerate-$$LIBVERSION 6 6 CONFIG += thread staticlib warn_off 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 INCLUDEPATH += ../../ -
libs/libmythui/libmythui.pro
4 4 TEMPLATE = lib 5 5 TARGET = mythui-$$LIBVERSION 6 6 CONFIG += debug thread dll 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 INCLUDEPATH += ../libmyth -
libs/libmyth/libmyth.pro
4 4 TEMPLATE = lib 5 5 TARGET = myth-$$LIBVERSION 6 6 CONFIG += thread dll 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 QMAKE_CLEAN += $(TARGET) $(TARGETA) $(TARGETD) $(TARGET0) $(TARGET1) $(TARGET2) -
libs/libmyth/mythcontext.cpp
184 184 Settings *m_qtThemeSettings; 185 185 186 186 QString m_installprefix; 187 QString m_installlibdir; 187 188 188 189 bool m_gui; 189 190 bool m_backend; … … 255 256 MythContextPrivate::MythContextPrivate(MythContext *lparent) 256 257 : parent(lparent), 257 258 m_settings(new Settings()), m_qtThemeSettings(new Settings()), 258 m_installprefix(PREFIX), 259 m_installprefix(PREFIX), m_installlibdir(LIBDIR), 259 260 m_gui(false), m_backend(false), m_themeloaded(false), 260 261 m_menuthemepathname(QString::null), m_themepathname(QString::null), 261 262 m_backgroundimage(NULL), … … 1102 1103 1103 1104 QString MythContext::GetLibraryDir(void) 1104 1105 { 1105 return d->m_install prefix + "/lib/mythtv/";1106 return d->m_installlibdir + "/mythtv/"; 1106 1107 } 1107 1108 1108 1109 QString MythContext::GetThemesParentDir(void) -
libs/libavcodec/libavcodec.pro
4 4 TEMPLATE = lib 5 5 TARGET = mythavcodec-$$LIBVERSION 6 6 CONFIG += thread dll warn_off 7 target.path = $${ PREFIX}/lib7 target.path = $${LIBDIR} 8 8 INSTALLS = target 9 9 10 10 INCLUDEPATH = ../ ../../ ../libavutil -
libs/libavutil/libavutil.pro
5 5 TARGET = mythavutil-$$LIBVERSION 6 6 CONFIG += thread dll warn_off 7 7 CONFIG -= qt 8 target.path = $${ PREFIX}/lib8 target.path = $${LIBDIR} 9 9 INSTALLS = target 10 10 11 11 INCLUDEPATH = ../ ../../ -
settings.pro
56 56 DEFINES += _GNU_SOURCE 57 57 DEFINES += _FILE_OFFSET_BITS=64 58 58 DEFINES += PREFIX=\"$${PREFIX}\" 59 DEFINES += LIBDIR=\"$${LIBDIR}\" 59 60 60 61 # construct linking path 61 62 -
filters/filter-common.pro
4 4 TEMPLATE = lib 5 5 CONFIG -= moc qt 6 6 CONFIG += plugin thread 7 target.path = $${ PREFIX}/lib/mythtv/filters7 target.path = $${LIBDIR}/mythtv/filters 8 8 INSTALLS = target 9 9 10 10 QMAKE_CFLAGS_RELEASE += -Wno-missing-prototypes