IRC log for #brlcad on 20160322

00:35.39 Notify 03BRL-CAD:starseeker * 67412 brlcad/trunk/src/tclscripts/rtwizard/main.c: Gets as far as starting the gui (if we remove the need for argv from RaytraceWizard.tcl's call to main) and generating an image in command line mode.
00:50.27 *** join/#brlcad kintel (~kintel@unaffiliated/kintel)
01:29.55 Notify 03BRL-CAD:brlcad * 67413 brlcad/trunk/include/bu/CMakeLists.txt: add initial API for supporting UUIDs. this is useful in a variety of places, but is specifically planned for the implementation of a generic performant prep caching system.
01:30.31 *** join/#brlcad LordOfBikes (~armin@dslb-088-066-215-171.088.066.pools.vodafone-ip.de)
01:33.53 Notify 03BRL-CAD:brlcad * 67414 brlcad/trunk/include/bu/uuid.h: just create() since this is what turns our generic container into a uuid (even though allocation happens beforehand).
01:38.15 Notify 03BRL-CAD:brlcad * 67415 brlcad/trunk/src/libbu/tests/CMakeLists.txt: stub in uuid unit tests
01:41.56 Notify 03BRL-CAD:brlcad * 67416 brlcad/trunk/src/libbu/tests/CMakeLists.txt: rename the two outliers like the rest with the bu_ prefix; use cpp for our c++.
01:43.41 Notify 03BRL-CAD:brlcad * 67417 brlcad/trunk/src/libbu/tests/test_funcs.c: bu_ prefix is reserved for public API
01:45.40 Notify 03BRL-CAD:brlcad * 67418 brlcad/trunk/src/libbu/tests/test_internals.h: don't need to declare a function not used outside of test_funcs.c
01:53.48 Notify 03BRL-CAD:brlcad * 67419 brlcad/trunk/src/libbu/tests/test_funcs.c: we can simplify further -- just seed off the time().
01:54.51 *** join/#brlcad kkrcodes (~kkr@14.139.160.31)
02:02.42 Notify 03BRL-CAD:brlcad * 67420 (brlcad/trunk/src/libbu/tests/bu_bitv.c brlcad/trunk/src/libbu/tests/test_funcs.c brlcad/trunk/src/libbu/tests/test_internals.h): further simplication as both the two remaining functions are only used in one place. when they get used in multiple locations, we can deal with them.
02:22.42 Notify 03BRL-CAD:brlcad * 67421 (brlcad/trunk/src/libbu/tests/CMakeLists.txt brlcad/trunk/src/libbu/tests/bitv-tests.cmake and 4 others): use our existing BRLCAD_OK/ERROR symbols that also conform with standard system process return code behavior of 0 meaning success, non-zero indicating failure.
02:25.02 Notify 03BRL-CAD:brlcad * 67422 (brlcad/trunk/src/libbu/tests/CMakeLists.txt brlcad/trunk/src/libbu/tests/bu_bitv.c and 3 others): this header is now empty and can be removed.
02:26.03 Notify 03BRL-CAD:brlcad * 67423 (brlcad/trunk/src/libbu/tests/test_funcs.c =================================================================== and 59 others): ditto for the empty shared test lib
02:30.29 Notify 03BRL-CAD:brlcad * 67424 (brlcad/trunk/src/libbu/tests/CMakeLists.txt brlcad/trunk/src/libbu/tests/bitv-tests.cmake brlcad/trunk/src/libbu/tests/vls-tests.cmake): prefix each test with test_ instead of tester_ for brevity and readability (verb instead of noun)
02:34.44 Notify 03BRL-CAD:brlcad * 67425 brlcad/trunk/src/libbu/CMakeLists.txt: rename timer.c to gettime.c to reflex the file contents (bu_gettime())
02:36.34 *** join/#brlcad skat00sh_ (uid103741@gateway/web/irccloud.com/x-hnyvmcslpqrfugzq)
02:45.30 Notify 03BRL-CAD:brlcad * 67426 (brlcad/trunk/src/libbu/date-time.c brlcad/trunk/src/libbu/gettime.c): consolidate the time functions. still need to fix API conformance...
02:48.51 Notify 03BRL-CAD:brlcad * 67427 brlcad/trunk/src/libbu/CMakeLists.txt: remove empty file now that the function moved to date-time.c, which we're also renaming to datetime.c
02:51.47 Notify 03BRL-CAD:brlcad * 67428 brlcad/trunk/src/libbu/tests/CMakeLists.txt: move the test name to match the new sourcefile name
02:56.05 Notify 03BRL-CAD:brlcad * 67429 brlcad/trunk/src/libbu/tests/CMakeLists.txt: tidy up the remaining two cmake files with a tests_ prefix so the directory listing sorts and is conveniently grouped by type.
03:15.22 Notify 03BRL-CAD:brlcad * 67430 brlcad/trunk/src/libbu/vls_vprintf.c: there is no value in manually extending the vls during every vprintf call since the subsequent string ops check and extend as needed. in fact extending every call could cause the allocation to grow too rapidly if we repeatedly print less than the step size.
03:20.23 Notify 03BRL-CAD:brlcad * 67431 (brlcad/trunk/src/libbu/vls.c brlcad/trunk/src/libbu/vls_internals.h): don't need to keep _VLS_ALLOC_STEP in a header any more
03:27.51 Notify 03BRL-CAD:brlcad * 67432 (brlcad/trunk/src/libbu/bu_internals.h =================================================================== and 59 others): match the two other 'internals' headers that pertain to private API we need in a header due to unit testing API. need a better simpler convention, but still good to avoid the bu_ prefix in this instance as these all pertain to bitv.
03:29.32 Notify 03BRL-CAD:brlcad * 67433 (brlcad/trunk/src/libbu/CMakeLists.txt brlcad/trunk/src/libbu/bitv.c brlcad/trunk/src/libbu/tests/bu_bitv.c): udpate the header references from bu_internals.h to bitv_internals.h
03:38.51 Notify 03BRL-CAD:brlcad * 67434 (brlcad/trunk/src/libbu/CMakeLists.txt brlcad/trunk/src/libbu/bitv.c and 16 others): see if we can get away with having 'internals' api headers simply match their corresponding source files/prefix. this better matches what most programmers are taught to do when sharing declarations across compilation units and is an easier convention to follow (and still permits lib_private.h headers for
03:38.54 Notify all-encompassing shared-module symbols).
03:38.56 Notify ...
03:42.43 Notify 03BRL-CAD:brlcad * 67435 (brlcad/trunk/src/libbu/bitv.h brlcad/trunk/src/libbu/rb.h brlcad/trunk/src/libbu/vls_vprintf.h): update guards and header to reflect file rename
04:06.16 *** join/#brlcad tandoorichick (3d0c28b1@gateway/web/freenode/ip.61.12.40.177)
05:50.32 Notify 03BRL-CAD:brlcad * 67436 brlcad/trunk/src/mged/setup.c: unused vars now that we are no longer manually loading tree.tcl on windows
05:56.22 *** join/#brlcad teepee_ (~teepee@unaffiliated/teepee)
06:02.45 *** join/#brlcad Zitara (252714bd@gateway/web/freenode/ip.37.39.20.189)
06:07.55 Notify 03BRL-CAD:brlcad * 67437 (brlcad/trunk/src/libbu/tests/CMakeLists.txt brlcad/trunk/src/libbu/tests/bu_datetime.c): consolidate the bu_gettime() tests into bu_datetime's set as test #0, expand the test a little bit to detect time travel
06:12.01 *** join/#brlcad Zitar (~chatzilla@37.39.20.189)
06:27.06 *** join/#brlcad davee_ (~davee@71-83-188-23.dhcp.lnbh.ca.charter.com)
06:50.13 *** join/#brlcad Pan_Lili (~Pan_Lili@183.157.162.48)
07:07.59 Pan_Lili Hi, when I update brlcad to version 67393, it is successfully compiled but when I run “make test”, the result is showed below.Is it normal?
07:08.21 Pan_Lili The following tests FAILED:
07:08.23 Pan_Lili <PROTECTED>
07:08.23 Pan_Lili <PROTECTED>
07:08.23 Pan_Lili <PROTECTED>
07:08.23 Pan_Lili <PROTECTED>
07:08.24 Pan_Lili <PROTECTED>
07:08.24 Pan_Lili <PROTECTED>
07:08.28 Pan_Lili <PROTECTED>
07:08.30 Pan_Lili <PROTECTED>
07:08.32 Pan_Lili <PROTECTED>
07:08.34 Pan_Lili <PROTECTED>
07:08.36 Pan_Lili <PROTECTED>
07:08.38 Pan_Lili <PROTECTED>
07:56.01 *** join/#brlcad tandoorichick (b64b2d01@gateway/web/freenode/ip.182.75.45.1)
08:06.26 *** join/#brlcad Pan_Lili (~Pan_Lili@183.157.162.48)
08:07.44 *** join/#brlcad skat00sh_ (uid103741@gateway/web/irccloud.com/x-cpmwmkebfbpalitq)
08:20.28 *** join/#brlcad Pan_Lili (~Pan_Lili@183.157.162.48)
09:10.26 *** join/#brlcad merzo (~merzo@user-94-45-58-141.skif.com.ua)
09:34.07 *** join/#brlcad kkrcodes (~kkr@14.139.160.31)
09:55.28 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/User:Johnsmith2167:
09:59.09 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Mac_mail_Customer_Service_Phone_Number_1-855-478-3289_Mac_mail_Customer_Support.png: Mac mail Customer Service Phone Number 1-855-478-3289 Mac mail Customer Support
10:10.34 *** join/#brlcad kkrcodes (~kkrcodes@14.139.160.31)
10:42.10 Notify 03BRL-CAD Wiki:Patrick Willium * 0 /wiki/User:Patrick_Willium:
10:52.21 *** join/#brlcad kkrcodes (~kkr@14.139.160.31)
11:33.12 *** join/#brlcad davee_ (~davee@71-83-188-23.dhcp.lnbh.ca.charter.com)
11:37.41 starseeker note for Gabriel when he returns to channel - the core search functionality is actually implemented in librt, not libged - need to think about how the -exec option will be recognized and the inputs to search reworked if we're going to hangle -exec at the libged level
12:34.10 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Norton_antivirus_support_phone_number_%2B1-855-315-3657.png: norton antivirus support phone number +1-855-315-3657 norton tech support phone number, norton customer support phone number 1-855-315-3657
12:35.55 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:-$-Gmx_customer_Service_Phone_Number_@%2B1-855-478-3289_Gmx_-support_-Phone_-Number_-USA_-and_Canada.png: (++@@Call, +1-855-478-3289 for all type help by Gmx Customer Service phone number, Gmx Tech Support Phone Number, Gmx Help Desk Phone Number, Gmx tech support number
12:37.15 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:@1-855-553-8765_-!-_quicken_intuit_Support_Number,quicken_phone_number.png: Call Toll Free Number @1-855-553-8765Â #!# quicken Support Number, quicken intuit Support phone Number, quicken support number, quicken phone number, quicken intuit support number, support phone number
12:40.11 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:1-855-288-0082_Facebook_Helpline_%2B1-855-288-0082_Facebook_tech_support_phone_number_USA.png: Facebook Tech Support@@Â 1-855-288-0082Â Facebook Customer Service Phone Number,Facebook Technical support Number??>
12:40.45 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:1-855-389-7335_Kindle_fire_technical_support_number_@_kindle_fire_technical_support_Phone_number.png: Help@1-855-389-7335Â @@@ Kindle fire technical support number @@#@@# kindle fire technical support Phone number @
12:40.46 archivist ban that spammer!
12:41.30 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:$$_-@@-_-$_Aim_mail_Customer_Service_Support_Phone_Number_1-855-315-1407_Aim_mail_Tech_Support.png: $$ #@@# #$ Aim mail Customer Service Support Phone Number 1-855-315-1407 Aim mail Tech Support
12:42.10 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Gmail_Customer_Service_Number_%2B1-855-315-1407_(USA)_-_Gmail_Password_Recovery_Toll_Free_Number.png: Get World Best Professionals Easily For Gmail Problem Solution Contact 24*7 to Gmail Customer Support Number @ Gmail Customer Service Number 1-855-315-1407Gmail Customer Service Number +1-855-315-1407 (USA)| Gmail Password Recovery Toll Free Number...
12:42.59 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:HELP@@_1-855-478-3289_Rocketmail_Custmer_Care_Service_Support_Phone_Number_USA_and_Canada.png: Rocketmail Phone Number 1-855-478-3289 for if you getting bored with Rocketmail Ge issues like Rocketmail not working and Rocketmail hack
12:44.14 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Hush_mail_Customer_Service_Phone_Number_--_-@-@-@1-855-478-3289_$$_-@@-_-$_Hush_mail_Tech_Support.png: 1-855-315- mail Customer Service Phone Number B106 @#@#@#$ 1-855-478-3289 $$ #@@# #$ Hush mail Tech Support 1-855-478-3289
12:44.59 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Pogo_Tech_Support_number_%2B1-855-288-0082_Pogo_Games_technical_Support_Phone_Number.png: Games Support +1-855-288-0082 Pogo Games technical Support Phone Number, Pogo Tech Support phone number, Pogo Technical Support phone
12:46.01 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Support_--@@_toll_free_1-855-288-0082_--Ebuddy_customer_service_Ebuddy_support_phone_Number.png: Support ##@@ toll free 1-855-288-0082 ##Ebuddy customer service Ebuddy support phone Number
12:50.42 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Twitter_tech_support_@_1-855-288-0082_Customer_service_number.jpg: Twitter tech support @Â 1-855-288-0082Â Customer service number.
12:56.24 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Activating_and_Setting_Up_iPhone_customer.png: 1-855-288-0082Â */How to Set Up a New iPhone - iPhone/Activating and Setting Up iPhone customer */ technical support number activation iphone
12:58.34 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:CALL_1-855-315-3657_Mozilla_Thunderbird_Customer_Service_Phone_Number_!_Mozilla_Thunderbird_Support.png: @!!1-855-315-3657!@ Mozilla Thunderbird Customer Service Phone Number 1-855-315-3657 Mozilla Thunderbird Support Phone Number 1-855-315-3657
13:05.21 Notify 03BRL-CAD Wiki:Johnsmith2167 * 0 /wiki/File:Roadrunner_Technical_support_Phone_Number_1-855-288-0082_Roadrunner_Customer_Service_No.png: $$## Roadrunner Technical support Phone Number 1-855-288-0082 Roadrunner Customer Service Number 1-855-288-0082
13:06.11 *** join/#brlcad kintel (~kintel@unaffiliated/kintel)
13:08.34 *** join/#brlcad davee_ (~davee@71-83-188-23.dhcp.lnbh.ca.charter.com)
13:14.24 *** join/#brlcad yorik (~yorik@177.139.37.53)
13:34.56 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/User:Johnsmith2167: Inserting nonsense/gibberish into pages
13:35.19 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Mac_mail_Customer_Service_Phone_Number_1-855-478-3289_Mac_mail_Customer_Support.png: spam
13:35.55 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Norton_antivirus_support_phone_number_%2B1-855-315-3657.png: spam
13:36.09 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:-$-Gmx_customer_Service_Phone_Number_@%2B1-855-478-3289_Gmx_-support_-Phone_-Number_-USA_-and_Canada.png: spam
13:36.19 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:@1-855-553-8765_-!-_quicken_intuit_Support_Number,quicken_phone_number.png: spam
13:36.28 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:1-855-288-0082_Facebook_Helpline_%2B1-855-288-0082_Facebook_tech_support_phone_number_USA.png: spam
13:36.43 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:1-855-389-7335_Kindle_fire_technical_support_number_@_kindle_fire_technical_support_Phone_number.png: spam
13:37.11 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:$$_-@@-_-$_Aim_mail_Customer_Service_Support_Phone_Number_1-855-315-1407_Aim_mail_Tech_Support.png: spam
13:37.21 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Gmail_Customer_Service_Number_%2B1-855-315-1407_(USA)_-_Gmail_Password_Recovery_Toll_Free_Number.png: spam
13:37.30 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:HELP@@_1-855-478-3289_Rocketmail_Custmer_Care_Service_Support_Phone_Number_USA_and_Canada.png: spam
13:37.39 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Hush_mail_Customer_Service_Phone_Number_--_-@-@-@1-855-478-3289_$$_-@@-_-$_Hush_mail_Tech_Support.png: spam
13:37.42 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Pogo_Tech_Support_number_%2B1-855-288-0082_Pogo_Games_technical_Support_Phone_Number.png: spam
13:37.49 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Support_--@@_toll_free_1-855-288-0082_--Ebuddy_customer_service_Ebuddy_support_phone_Number.png: spam
13:41.27 *** join/#brlcad kintel (~kintel@unaffiliated/kintel)
14:04.34 *** join/#brlcad kintel (~kintel@unaffiliated/kintel)
14:05.19 *** join/#brlcad Mathnerd314 (~quassel@supertux/Mathnerd314)
14:11.41 *** join/#brlcad penumbra (~arttp2@182.69.162.89)
14:56.15 *** join/#brlcad Notify (~notify@66-118-151-70.static.sagonet.net)
14:56.19 Notify 03BRL-CAD:starseeker * 67438 brlcad/trunk/src/tclscripts/rtwizard/main.c: Set argc/argv so we don't have to change RaytraceWizard.tcl
14:56.25 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Twitter_tech_support_@_1-855-288-0082_Customer_service_number.jpg: spam
14:56.27 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Real_Player_Support_Number_@@_%2B_1-855-288-0082_Toll_Free_Number,_Customer_Support_Number.png: spam
14:56.29 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Activating_and_Setting_Up_iPhone_customer.png: spam
14:56.56 *** join/#brlcad nilram__ (~nilram@2001:250:3c02:763:bcf1:ea29:474:7acf)
14:57.14 *** join/#brlcad Notify (~notify@66-118-151-70.static.sagonet.net)
14:57.17 Notify 03BRL-CAD:starseeker * 67438 brlcad/trunk/src/tclscripts/rtwizard/main.c: Set argc/argv so we don't have to change RaytraceWizard.tcl
14:57.23 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Twitter_tech_support_@_1-855-288-0082_Customer_service_number.jpg: spam
14:57.25 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Real_Player_Support_Number_@@_%2B_1-855-288-0082_Toll_Free_Number,_Customer_Support_Number.png: spam
14:57.27 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Activating_and_Setting_Up_iPhone_customer.png: spam
14:57.29 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:CALL_1-855-315-3657_Mozilla_Thunderbird_Customer_Service_Phone_Number_!_Mozilla_Thunderbird_Support.png: spam
14:57.31 Notify 03BRL-CAD Wiki:Starseeker * 0 /wiki/File:Roadrunner_Technical_support_Phone_Number_1-855-288-0082_Roadrunner_Customer_Service_No.png: spam
15:19.56 Notify 03BRL-CAD:starseeker * 67439 (brlcad/trunk/include/tclcad.h brlcad/trunk/src/libtclcad/CMakeLists.txt): The Tcl initialization code used by bwish/btclsh, mged, and potentially other C Tcl/Tk programs should be a common routine (or at least, the 'default' elements of it) - make a stab at defining such a routine in libtclcad. For now it's just going to be used in testing with rtwizard, but if/when the kinks are
15:19.58 Notify ironed out it should replace similar code in bwish and (probably) mged.
15:20.00 Notify ...
15:24.27 Notify 03BRL-CAD:starseeker * 67440 (brlcad/trunk/include/tclcad.h brlcad/trunk/src/libtclcad/tclcad_init.c): Go with a more generic name
15:25.48 Notify 03BRL-CAD:starseeker * 67441 brlcad/trunk/src/tclscripts/rtwizard/main.c: Use the new tclcad functions.
15:52.30 *** join/#brlcad gaganjyot (~gaganjyot@122.173.215.191)
16:20.51 *** join/#brlcad kintel (~kintel@unaffiliated/kintel)
16:31.15 *** join/#brlcad amrinder (75c767a3@gateway/web/freenode/ip.117.199.103.163)
16:59.33 amrinder I'm getting verification error for my account on OGV
17:00.14 amrinder I haven't got any mail regarding OGV on my mail id.
17:00.24 amrinder Is there anything which I'm missing
17:00.25 amrinder ?
17:06.23 *** join/#brlcad Gabriel_ (bc1ab9c9@gateway/web/freenode/ip.188.26.185.201)
17:11.14 *** join/#brlcad tandoorichick (3d0c28b1@gateway/web/freenode/ip.61.12.40.177)
17:12.13 amrinder ishweradmin:
17:12.50 *** join/#brlcad pujani (~pujani@117.225.16.45)
17:14.44 Notify 03BRL-CAD:n_reed * 67442 brlcad/branches/brep-debug/doc/docbook/system/implementation/en/CMakeLists.txt: fix docbook macro path
17:21.22 pujani hi, I am Sameer Pujani undergraduate 4th year student of Btech IT. I want to contribute with brlcad in "Materials Database Project".
17:51.55 Notify 03BRL-CAD:n_reed * 67443 brlcad/branches/brep-debug/doc/docbook/system/implementation/en/bool_eval_development.xml: add note on memory allocation
17:56.50 *** join/#brlcad teepee_ (~teepee@unaffiliated/teepee)
18:07.27 brlcad hi pujani
18:08.11 brlcad pujani: given how late you're coming into the applications, I would suggest contacting one of our partner orgs (stepcode, librecad, freecad, openscad, linuxcnc)
18:08.21 brlcad or now
18:08.26 brlcad s/now/not/
18:11.22 *** join/#brlcad pujani (~pujani@117.225.16.45)
18:15.36 *** join/#brlcad Akamoha (67e16433@gateway/web/freenode/ip.103.225.100.51)
18:23.51 *** join/#brlcad Gabriel_ (567f7ccb@gateway/web/freenode/ip.86.127.124.203)
18:35.59 *** join/#brlcad davee_ (~davee@71-83-188-23.dhcp.lnbh.ca.charter.com)
19:09.45 *** join/#brlcad pujani (~pujani@117.225.16.45)
19:40.34 *** join/#brlcad pujani (~pujani@117.237.115.182)
19:47.53 Notify 03BRL-CAD:starseeker * 67444 (brlcad/trunk/include/tclcad.h brlcad/trunk/src/libtclcad/tclcad_init.c brlcad/trunk/src/tclscripts/rtwizard/main.c): Per discussion with Sean, go simple with the init function and narrow the options down to non-GUI (turn on everything that doesn't need Tk) or GUI (turn on everything) on the theory that we should be able to initialize these without doing any harm even if we don't need
19:47.55 Notify them.
19:47.57 Notify ...
20:01.35 Notify 03BRL-CAD:starseeker * 67445 brlcad/trunk/src/mged/setup.c: Try the new tclcad_init function in MGED
20:05.40 Notify 03BRL-CAD:starseeker * 67446 brlcad/trunk/src/bwish/winMain.c: bio.h immediately undefines the WIN32_LEAN_AND_MEAN define, so there's no point in doing this.
20:10.09 Notify 03BRL-CAD:starseeker * 67447 brlcad/trunk/src/bwish/CMakeLists.txt: unixMain.c is unused according to the build logic.
20:44.49 Notify 03BRL-CAD:starseeker * 67448 brlcad/trunk/src/bwish/main.c: Replace Tcl init in main.c with tclcad_init
20:56.29 ``Erik FreeBSD rpi2 11.0-CURRENT FreeBSD 11.0-CURRENT #0 r296485: Tue Mar 8 16:35:01 UTC 2016 root@releng2.nyi.freebsd.org:/usr/obj/arm.armv6/usr/src/sys/RPI2 arm
21:21.49 Notify 03BRL-CAD:starseeker * 67449 (brlcad/trunk/src/bwish/CMakeLists.txt brlcad/trunk/src/bwish/input.c brlcad/trunk/src/bwish/main.c): Consolidate tcl.c into main.c, flatten some of the function calls. Not 100% sure, but it looks like the commands from cmd.c are not defined on Windows?
21:51.55 Notify 03BRL-CAD:starseeker * 67450 (brlcad/trunk/src/bwish/cmd.c brlcad/trunk/src/bwish/main.c): Relatively crude and untested, but make a stab at merging the Windows and unix main files. This doesn't do much to actually consolidate the logic, but the initial goal is to be able to build one set of files on all platforms.
21:52.39 Notify 03BRL-CAD:starseeker * 67451 (brlcad/trunk/src/bwish/cmd.c brlcad/trunk/src/bwish/input.c): need common.h to know about windows.h
21:58.50 *** join/#brlcad witness_ (uid10044@gateway/web/irccloud.com/x-ycsluqwkxzhoqixf)
22:19.44 brlcad ``Erik: new phone?
22:33.17 Notify 03BRL-CAD:starseeker * 67452 (brlcad/trunk/misc/CMake/BRLCAD_Targets.cmake brlcad/trunk/src/bwish/CMakeLists.txt brlcad/trunk/src/libtclcad/CMakeLists.txt): Take the big step and consolidate bwish/btclsh srcs (and build logic) down. Untested on Windows.
23:06.45 *** join/#brlcad teepee_ (~teepee@unaffiliated/teepee)
23:10.23 Notify 03BRL-CAD:vasco_costa * 67453 (brlcad/trunk/src/librt/librt_private.h brlcad/trunk/src/librt/primitives/common.cl and 6 others): apply sf patch 435 from Param Hanji which adds opencl code for the epa primitive. commented out code which modifies vpriv shot data from all primitive normal computations.
23:11.22 *** join/#brlcad kintel (~kintel@unaffiliated/kintel)
23:50.03 kkrcodes brlcad: I've added new features: export to txt and json, new form for solving data inconsistency and fixed several more bugs in Materials Database project.
23:51.02 kkrcodes brlcad: I've updated the pull request - https://github.com/BRL-CAD/MaterialsDatabase/pull/4 . Please take a look! Thanks.
23:51.13 Notify 03BRL-CAD:starseeker * 67454 brlcad/trunk/src/bwish/main.c: Fixes to MSVC build
23:52.45 starseeker woo hoo!
23:53.54 starseeker C code isn't much cleaner, but build logic is a lot nicer
23:55.29 Notify 03BRL-CAD:starseeker * 67455 brlcad/trunk/src/bwish/CMakeLists.txt: ws
23:57.28 kkrcodes I've also updated my proposal to reflect this and re-uploaded it to the GSoC portal as a new document. Feedback/suggestions for improving the proposal further would be much appreciated! Thanks! :)

Generated by irclog2html.pl Modified by Tim Riker to work with infobot.