Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 266249 | Differences between
and this patch

Collapse All | Expand All

(-)flexdock-0.5.2-orig/build.xml (-4 / +6 lines)
Lines 69-74 Link Here
69
69
70
   <path id="rt.classpath">
70
   <path id="rt.classpath">
71
      <pathelement location="${bin.dir}"/>
71
      <pathelement location="${bin.dir}"/>
72
      <pathelement location="${lib.dir}/commons-logging.jar"/>
72
   </path>
73
   </path>
73
   <path id="rt.classpath.demo">
74
   <path id="rt.classpath.demo">
74
      <pathelement location="${bin.dir.demo}"/>
75
      <pathelement location="${bin.dir.demo}"/>
Lines 118-124 Link Here
118
      <condition property="os.unixWithXlib">
119
      <condition property="os.unixWithXlib">
119
         <and>
120
         <and>
120
            <os family="unix"/>
121
            <os family="unix"/>
121
            <available file="/usr/X11R6/include/X11/Xlib.h"/>
122
            <available file="/usr/include/X11/Xlib.h"/>
122
         </and>
123
         </and>
123
      </condition>
124
      </condition>
124
   </target>
125
   </target>
Lines 291-301 Link Here
291
292
292
      <exec executable="gcc" failonerror="true">
293
      <exec executable="gcc" failonerror="true">
293
         <arg value="-lX11"/>
294
         <arg value="-lX11"/>
294
         <arg value="-L/usr/X11R6/lib"/>
295
         <arg value="-L/usr/lib"/>
295
         <arg value="-I/usr/X11R6/include"/>
296
         <arg value="-I/usr/include/X11"/>
296
         <arg value="-o"/>
297
         <arg value="-o"/>
297
         <arg value="${so.dir}/libRubberBand${library.key}.so"/>
298
         <arg value="${so.dir}/libRubberBand${library.key}.so"/>
298
         <arg value="-shared"/>
299
         <arg value="-shared"/>
300
         <arg value="-fPIC"/>
299
         <arg value="${c.dir}/RubberBand.c"/>
301
         <arg value="${c.dir}/RubberBand.c"/>
300
         <arg line='${sdk.include.gcc.args}'/> <!-- potentially multiple include dirs -->
302
         <arg line='${sdk.include.gcc.args}'/> <!-- potentially multiple include dirs -->
301
      </exec>
303
      </exec>
Lines 313-319 Link Here
313
         <isset property="generic.jar"/>
315
         <isset property="generic.jar"/>
314
      </condition>
316
      </condition>
315
      <property name="jar.suffix" value=""/>
317
      <property name="jar.suffix" value=""/>
316
      <property name="jar.excludes" value=""/>
318
      <property name="jar.excludes" value="**/*.so"/>
317
319
318
320
319
      <!-- after this method is called, other targets can use these props -->
321
      <!-- after this method is called, other targets can use these props -->

Return to bug 266249