| 43 | | if os.path.exists(self.path+self.node.name+'/aclocal.d') == False: |
| 44 | | os.mkdir(self.path + self.node.name + '/aclocal.d') |
| 45 | | |
| 46 | | for x in os.listdir('generate/aclocal.d/'): |
| 47 | | if not os.path.isdir(x): |
| 48 | | shutil.copy('generate/aclocal.d/' + x,self.path + self.node.name + '/aclocal.d') |
| | 43 | #if os.path.exists(self.path+self.node.name+'/aclocal.d') == False: |
| | 44 | # os.mkdir(self.path + self.node.name + '/aclocal.d') |
| | 45 | |
| | 46 | #for x in os.listdir('generate/aclocal.d/'): |
| | 47 | # if not os.path.isdir(x): |
| | 48 | # shutil.copy('generate/aclocal.d/' + x,self.path + self.node.name + '/aclocal.d') |
| 125 | | tstr = "AC_CORBA_ORB\n\n" |
| 126 | | output.write(tstr) |
| | 125 | #tstr = "AC_CORBA_ORB\n\n" |
| | 126 | #output.write(tstr) |
| | 127 | |
| | 128 | #begin stuff for improved auto foo (no aclocal.d) |
| | 129 | tstr = "AC_LANG_PUSH([C++])\n\n" |
| | 130 | output.write(tstr) |
| | 131 | |
| | 132 | tstr = "AC_CHECK_LIB([omniORB4], [main], [], [AC_MSG_ERROR([cannot find omniORBi4 library])])\n" |
| | 133 | output.write(tstr) |
| | 134 | tstr = "AC_CHECK_LIB([omniDynamic4], [main], [], [AC_MSG_ERROR([cannot find omniDynamic4 library])])\n" |
| | 135 | output.write(tstr) |
| | 136 | tstr = "AC_CHECK_HEADERS([omniORB4/CORBA.h], [], [AC_MSG_ERROR([cannot find omniORB4 header files])])\n\n" |
| | 137 | output.write(tstr) |
| | 138 | tstr = "AC_LANG_POP\n\n" |
| | 139 | output.write(tstr) |
| | 140 | #end stuff for improved autofoo (no aclocal.d) |
| | 141 | |
| | 142 | |
| | 143 | |
| | 144 | |
| | 145 | |